home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / intuition / windowtofront.c < prev   
C/C++ Source or Header  |  1996-11-08  |  1KB  |  68 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: windowtofront.c,v 1.3 1996/11/08 11:28:05 aros Exp $
  4.     $Log: windowtofront.c,v $
  5.     Revision 1.3  1996/11/08 11:28:05  aros
  6.     All OS function use now Amiga types
  7.  
  8.     Moved intuition-driver protos to intuition_intern.h
  9.  
  10.     Revision 1.2  1996/10/24 15:51:25  aros
  11.     Use the official AROS macros over the __AROS versions.
  12.  
  13.     Revision 1.1  1996/10/21 17:56:24  aros
  14.     Two new functions
  15.  
  16.  
  17.     Desc:
  18.     Lang: english
  19. */
  20. #include "intuition_intern.h"
  21.  
  22. /*****************************************************************************
  23.  
  24.     NAME */
  25.     #include <intuition/intuition.h>
  26.     #include <clib/intuition_protos.h>
  27.  
  28.     AROS_LH1(void, WindowToFront,
  29.  
  30. /*  SYNOPSIS */
  31.     AROS_LHA(struct Window *, window, A0),
  32.  
  33. /*  LOCATION */
  34.     struct IntuitionBase *, IntuitionBase, 52, Intuition)
  35.  
  36. /*  FUNCTION
  37.     Bring a window to the front (ie. before any other window).
  38.  
  39.     INPUTS
  40.     window - Which window
  41.  
  42.     RESULT
  43.     None.
  44.  
  45.     NOTES
  46.  
  47.     EXAMPLE
  48.  
  49.     BUGS
  50.  
  51.     SEE ALSO
  52.  
  53.     INTERNALS
  54.  
  55.     HISTORY
  56.     29-10-95    digulla automatically created from
  57.                 intuition_lib.fd and clib/intuition_protos.h
  58.  
  59. *****************************************************************************/
  60. {
  61.     AROS_LIBFUNC_INIT
  62.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  63.  
  64.     intui_WindowToFront (window);
  65.  
  66.     AROS_LIBFUNC_EXIT
  67. } /* WindowToFront */
  68.